home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / docs / help / arexxbegin.lha / ARexx_For_Beginners / Articles_11-20 / Example17-1.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1995-04-11  |  165 b   |  14 lines

  1. /* Example17-1.rexx */
  2.  
  3. SAY 'Civil Time before counter loop is:'
  4. SAY TIME(C)
  5.  
  6. DO c = 1 to 5
  7.   SAY "C =" c
  8. END
  9.  
  10. SAY 'Civil Time after counter loop is:'
  11. SAY TIME(C)
  12.  
  13.  
  14.